home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / program / snpd9611.zip / STRISTR.C < prev    next >
C/C++ Source or Header  |  1996-11-24  |  402b  |  23 lines

  1. .I 0 2
  2. /* +++Date last modified: 24-Nov-1996 */
  3.  
  4. .I 24 5
  5. #if defined(__cplusplus) && __cplusplus
  6.  extern "C" {
  7. #endif
  8.  
  9. char *stristr(const char *String, const char *Pattern)
  10. .D 25 1
  11. .I 29 2
  12.       for (start = (char *)String,
  13.            pptr  = (char *)Pattern,
  14. .D 30 2
  15. .I 53 1
  16.             pptr = (char *)Pattern;
  17. .D 54 1
  18. .I 69 4
  19. #if defined(__cplusplus) && __cplusplus
  20.  }
  21. #endif
  22.  
  23.